home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
22
/
4
/
DISK2247.ZIP
/
CBASE101.ZIP
/
CBASE.ZIP
/
CBDELCUR.C
< prev
next >
Wrap
Text File
|
1990-06-21
|
3KB
|
118 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "@(#)cbdelcur.c 1.4 - 90/06/20" */
/* ansi headers */
#include <errno.h>
/*#include <stddef.h>*/
/*#include <stdlib.h>*/
/*#include <string.h>*/
/* local headers */
#include "cbase_.h"
/*man---------------------------------------------------------------------------
NAME
cbdelcur - delete current cbase record
SYNOPSIS
#include <cbase.h>
int cbdelcur(cbp)
cbase_t *cbp;
DESCRIPTION
The cbdelcur function deletes the current record of cbase cbp.
The record cursor is set to the record following the deleted
record. All key cursors are set to null.
cbdelcur will fail if one or more of the following is true:
[EINVAL] cbp is not a valid cbase pointer.
[CBELOCK] cbp is not write locked.
[CBENOPEN] cbp is not open.
[CBENREC] The record cursor of cbp is null.
SEE ALSO
cbinsert, cbrcursor.
DIAGNOSTICS
Upon successful completion, a value of 0 is returned. Otherwise,
a value of -1 is returned, and errno set to indicate the error.
------------------------------------------------------------------------------*/
int cbdelcur(cbp)
cbase_t * cbp;
{
lspos_t lspos = NIL;
cbrpos_t cbrpos = NIL;
void *buf = NULL;
int i = 0;
/* validate arguments */
if (!cb_valid(cbp)) {
errno = EINVAL;
return -1;
}
/* check if not open */
if (!(cbp->flags & CBOPEN)) {
errno = CBENOPEN;
return -1;
}
/* check if not write locked */
if (!(cbp->flags & CBWRLCK)) {
errno = CBELOCK;
return -1;
}
/* check if record cursor is null */
if (lscursor(cbp->lsp) == NULL) {
errno = CBENREC;
return -1;
}
/* get record position */
if (lsgetcur(cbp->lsp, &lspos) == -1) {
CBEPRINT;
return -1;
}
cbrpos = lspos;
/* delete keys */
for (i = 0; i < cbp->fldc; ++i) {
if (cbp->fldv[i].flags & CB_FKEY) {
buf = calloc((size_t)1, cbp->fldv[i].len + sizeof(cbrpos_t));
if (buf == NULL) {
CBEPRINT;
errno = ENOMEM;
return -1;
}
if (lsgetrf(cbp->lsp, cbp->fldv[i].offset, buf, cbp->fldv[i].len) == -1) {
CBEPRINT;
free(buf);
return -1;
}
memcpy(((char *)buf + cbp->fldv[i].len), &cbrpos, sizeof(cbrpos_t));
if (btdelete(cbp->btpv[i], buf) == -1) {
CBEPRINT;
free(buf);
return -1;
}
free(buf);
buf = NULL;
}
}
/* delete current record */
if (lsdelcur(cbp->lsp) == -1) {
CBEPRINT;
return -1;
}
errno = 0;
return 0;
}